home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Prog
/
T
/
TC Prog Guide.cpt
/
picture ƒ
/
frame.c
< prev
next >
Wrap
Text File
|
1991-02-16
|
644b
|
35 lines
/*
* FILE: frame.c
* AUTHOR: R. Gonzalez
* CREATED: October 3, 1990
*
* methods for frame class
*/
# include "frame.h"
/******************************************************************
* initialize
******************************************************************/
boolean Frame::init(void)
{
set(0.,0.,2.,2.);
return TRUE;
}
/******************************************************************
* set values
******************************************************************/
void Frame::set(double x_val,double y_val,double width_val,
double height_val)
{
x = x_val;
y = y_val;
width = width_val;
height = height_val;
}